home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d20 / fddev202.arc / C.ARC / REQUEST.H < prev    next >
Text File  |  1991-10-01  |  1KB  |  34 lines

  1. /*
  2. **  request.h (FrontDoor)
  3. **
  4. **  Copyright 1991 Joaquim H. Homrighausen. All rights reserved.
  5. **
  6. **  REQUEST.FD format for FrontDoor 2.00+
  7. **
  8. **  Last revision:  91-10-02
  9. **                            
  10. **  -------------------------------------------------------------------------
  11. **  This information is not necessarily final and is subject to change at any
  12. **  given time without further notice
  13. **  -------------------------------------------------------------------------
  14. */
  15.  
  16. #define ACTIVE  0x01
  17. #define DELETED 0x02                               /* Never written to disk */
  18.  
  19.  
  20. /*
  21. **  The "filename" and "password" fields are NUL terminated.
  22. */
  23. typedef struct
  24.     {
  25.     char
  26.         filename[41],                 /* Filename or unique portion thereof */
  27.         password[17];                                           /* Password */
  28.     byte
  29.         status;                                              /* 0==Inactive */
  30.     }
  31.     _REQUEST, *REQPTR;
  32.  
  33. /* end of file "request.h" */
  34.